home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 19 code / SimpliFace_V2 / Sources / SimpliFace2Events.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-15  |  978 b   |  56 lines  |  [TEXT/MPS ]

  1. /*
  2.     SimpliFace2Events.h
  3.     
  4.     AE Registry extensions for SimpliFace2
  5.     
  6.  
  7.     Developed by:
  8.  
  9.     Paul G Smith (commstalk hq & Full Moon Software, Inc)
  10.  
  11.     you can leave messages at (UK): 0727 844232; (US): 408 253 7199
  12.     BUT I prefer to be contacted by e-mail
  13.     AppleLink:     COMMSTALK.HQ
  14.     Internet:     COMMSTALK.HQ@applelink.apple.com
  15.  
  16.     "SimpliFace2" Sample code to accompany develop article
  17.     on techniques for controlling script inheritance.
  18.     
  19.     
  20.  
  21. */
  22.  
  23.  
  24. /* custom apple event: "user event" */
  25.  
  26. #define kAESystemEvent    'SYSE'
  27.  
  28. #define keyAEEventKind    'PEVK'
  29.  
  30.  
  31. /* enumerations */
  32.  
  33. #define enumEventKind    'EEVK'
  34. #define    kAEMenuEvent    'EMEN'
  35. #define    kAEKeyEvent        'EKEY'
  36. #define    kAEMouseEvent    'EMOU'
  37.  
  38. #define enumButtonKind    'EBTK'
  39. #define    kAEBtnStandard    'EBST'
  40. #define    kAEBtnCheckbox    'EBCB'
  41. #define    kAEBtnRadio        'EBRA'
  42.  
  43.  
  44. /* object classes */
  45.  
  46. #define    cButton            'CBTN'
  47. #define    cTextLabel        'CFTX'
  48.  
  49.  
  50. /* object properties */
  51.  
  52. #define pSharedScript    'SCPT'
  53. #define pButtonKind        'PBTK'
  54. #define pEditable        'PEDI'
  55.  
  56.